* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	overflow-y: scroll;
	scrollbar-gutter: stable;
	scrollbar-color: #5FCDC3 rgba(95, 205, 195, 0.12);
	scrollbar-width: thin;
}
 html::-webkit-scrollbar {
 width: 10px;
}
 html::-webkit-scrollbar-track {
 background: rgba(95, 205, 195, 0.12);
 border-radius: 999px;
}
 html::-webkit-scrollbar-thumb {
 background: linear-gradient(180deg, #6FE1D8 0%, #3EAFA7 100%);
 border-radius: 999px;
 border: 1px solid rgba(11, 14, 23, 0.4);
}
 html::-webkit-scrollbar-thumb:hover {
 background: linear-gradient(180deg, #84ECE3 0%, #52BFB7 100%);
}
body {
	background: #0B0E17;
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', 'Poppins', 'SF Pro Display', sans-serif;
	color: #E9EDF5;
	line-height: 1.5;
	scroll-behavior: smooth;
	min-height: 100vh;
}
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}
/* 现代黑暗高级感 + 霓虹冷色调 */
    .glass-card {
	background: rgba(20, 26, 36, 0.65);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(80, 180, 200, 0.25);
	border-radius: 2rem;
	transition: all 0.2s ease;
}
/* 导航 */
    .navbar {
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 20px 0;
	background: rgba(11, 14, 23, 0.85);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(80, 210, 194, 0.2);
}
.nav-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.logo {
	font-size: 1.8rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	background: linear-gradient(100deg, #e9f1ff 0%, #7fdbd6 42%, #ffffff 50%, #7fdbd6 58%, #dce8ff 100%);
	background-size: 280% 100%;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	animation: logoShine 4.2s linear infinite;
}
.logo span {
	background: linear-gradient(100deg, #a5f0e8 0%, #5bc0be 42%, #e7fffc 50%, #5bc0be 58%, #a5f0e8 100%);
	background-size: 280% 100%;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-weight: 800;
	animation: logoShine 4.2s linear infinite;
}
 @keyframes logoShine {
 0% {
 background-position: 140% 50%;
}
 100% {
 background-position: -140% 50%;
}
}
.nav-links a {
	text-decoration: none;
	color: #B5C7E6;
	font-weight: 500;
	border-radius: 60px;
	transition: all 0.2s;
	font-size: 0.95rem;
	letter-spacing: 0.2px;
	border: 1px solid #0B0E17;
	padding: 8px 18px;
}
.nav-links a:hover {
	color: #FFFFFF;
	background: rgba(95, 205, 195, 0.2);
	border: 1px solid rgba(95, 205, 195, 0.4);
	padding: 8px 18px;
}
/* 按钮 */
    .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0px;
	padding: 12px 34px;
	border-radius: 60px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
	border: none;
	cursor: pointer;
	font-size: 1rem;
}
.icon {
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: -2px;
	margin-right: 6px;
	fill: currentColor;
}
.icon-lg {
	width: 18px;
	height: 18px;
	vertical-align: -3px;
}
.hero-buttons .icon {
	width: 23px;
	height: 23px;
	vertical-align: -4px;
}
.btn-primary {
	background: linear-gradient(105deg, #5FCDC3 0%, #3B9E9A 100%);
	color: #0B0E17;
	box-shadow: 0 6px 20px rgba(95, 205, 195, 0.25);
}
.btn-pulse {
	animation: btnPulse 2.4s ease-in-out infinite;
	will-change: transform, box-shadow;
}
.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(95, 205, 195, 0.4);
	background: linear-gradient(105deg, #77E3D9, #45B7B0);
	animation-play-state: paused;
}
.btn-outline {
	background: transparent;
	border: 1.5px solid rgba(95, 205, 195, 0.7);
	color: #E0F2F0;
	backdrop-filter: blur(4px);
}
.btn-outline:hover {
	border-color: #5FCDC3;
	background: rgba(95, 205, 195, 0.1);
	transform: translateY(-2px);
}
/* Hero */
    .hero {
	padding: 100px 0 80px;
	position: relative;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background: radial-gradient(ellipse 70% 50% at 30% 30%, rgba(95, 205, 195, 0.2), transparent 65%), radial-gradient(circle at 85% 70%, rgba(70, 140, 210, 0.15), transparent 70%);
}
.hero h1 {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
	background: linear-gradient(145deg, #FFFFFF 0%, #AAE3DE 80%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 24px;
}
.hero-badge {
	display: inline-block;
	background: rgba(95, 205, 195, 0.18);
	border: 1px solid rgba(95, 205, 195, 0.4);
	border-radius: 60px;
	padding: 5px 20px;
	font-size: 0.8rem;
	font-weight: 500;
	margin-bottom: 32px;
	backdrop-filter: blur(4px);
	color: #8FEDE4;
}
.hero-badge .signal-icon {
	animation: signalIconWave 1.45s ease-in-out infinite;
	transform-origin: center;
	filter: drop-shadow(0 0 2px rgba(143, 237, 228, 0.55));
}
.hero-desc {
	font-size: 1.18rem;
	color: #72d6ce8a;
	width: 750px;
	margin: 0 auto 44px;
	line-height: 1.6;
	background: rgba(15, 20, 30, 0.5);
	backdrop-filter: blur(12px);
	border-radius: 22rem;
	padding: 8px 32px;
	border: 1px solid rgba(95, 205, 195, 0.2);
}
.hero-buttons {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
}
/* 申明区 */
    section {
	padding: 60px 0;
}
.section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
	padding-left: 15px;
	letter-spacing: -0.3px;
	color: #EAF4FF;
	display: inline-block;
	border-left: 4px solid #5FCDC3;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}
 @supports ((-webkit-background-clip: text) or (background-clip: text)) {
 .section-title {
 background: linear-gradient(120deg, #F0F6FF, #8ECFC9);
 background-clip: text;
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 color: transparent;
}
 .section-title::after {
 content: "";
 position: absolute;
 top: -35%;
 left: -45%;
 width: 36%;
 height: 170%;
 background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.28) 46%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0.28) 54%, rgba(255, 255, 255, 0) 100%);
 transform: skewX(-18deg);
 animation: sectionTitleShine 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
 pointer-events: none;
 filter: blur(0.6px);
}
 @keyframes sectionTitleShine {
 0% {
 left: -45%;
}
 62% {
 left: 135%;
}
 100% {
 left: 135%;
}
}
 @keyframes btnPulse {
 0% {
 transform: scale(1);
 box-shadow: 0 7px 18px rgba(95, 205, 195, 0.28), 0 0 0 0 rgba(95, 205, 195, 0.34);
}
 45% {
 transform: scale(1.015);
 box-shadow: 0 10px 22px rgba(95, 205, 195, 0.34), 0 0 0 10px rgba(95, 205, 195, 0.03);
}
 72% {
 transform: scale(1.008);
 box-shadow: 0 9px 20px rgba(95, 205, 195, 0.3), 0 0 0 14px rgba(95, 205, 195, 0);
}
 100% {
 transform: scale(1);
 box-shadow: 0 7px 18px rgba(95, 205, 195, 0.28), 0 0 0 0 rgba(95, 205, 195, 0);
}
}
 @keyframes signalIconWave {
 0% {
 transform: scale(1) translateY(0);
 opacity: 0.9;
}
 40% {
 transform: scale(1.08) translateY(-1px);
 opacity: 1;
}
 75% {
 transform: scale(0.96) translateY(1px);
 opacity: 0.78;
}
 100% {
 transform: scale(1) translateY(0);
 opacity: 0.9;
}
}
.declaration-card {
 max-width: 960px;
 width: calc(100% - 140px);
 margin: 0 auto;
 background: rgba(18, 24, 34, 0.7);
 backdrop-filter: blur(8px);
 border: 1px solid rgba(95, 205, 195, 0.25);
 border-radius: 2rem;
 padding: 20px;
}
.declaration-video {
 position: relative;
 width: 100%;
 aspect-ratio: 16 / 9;
 border-radius: 1.4rem;
 overflow: hidden;
 background: rgba(8, 12, 20, 0.8);
}
.declaration-video iframe {
 width: 100%;
 height: 100%;
 border: none;
 display: block;
}
.declaration-carousel {
 position: relative;
 width: 100%;
 border-radius: 1.4rem;
 overflow: hidden;
 background: rgba(8, 12, 20, 0.8);
}
.declaration-slides {
 position: relative;
 width: 100%;
 aspect-ratio: 16 / 8;
 min-height: 280px;
}
.declaration-slide {
 position: absolute;
 inset: 0;
 opacity: 0;
 transition: opacity 0.35s ease;
 display: flex;
 align-items: center;
 justify-content: center;
 overflow: hidden;
}
.declaration-slide.active {
 opacity: 1;
}
.declaration-slide .slide-bg {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 filter: blur(18px);
 transform: scale(1.08);
 opacity: 0.62;
}
.declaration-slide .slide-fg {
 position: relative;
 z-index: 2;
 width: calc(100% - 24px);
 height: calc(100% - 100px);
 object-fit: contain;
 background: transparent;
 display: block;
 border-radius: 10px;
}
.declaration-control {
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 width: 38px;
 height: 38px;
 border-radius: 999px;
 border: 1px solid rgba(255, 255, 255, 0.28);
 background: rgba(0, 0, 0, 0.35);
 color: #fff;
 font-size: 20px;
 cursor: pointer;
 z-index: 2;
}
.declaration-control.prev {
 left: 12px;
}
.declaration-control.prev:hover {
 background: rgba(95, 205, 195, 0.2);
 border-color: rgba(95, 205, 195, 0.65);
 color: #eaffff;
 transform: translateY(-50%) translateX(-1px);
}
.declaration-control.next {
 right: 12px;
}
.declaration-control.next:hover {
 background: rgba(95, 205, 195, 0.2);
 border-color: rgba(95, 205, 195, 0.65);
 color: #eaffff;
 transform: translateY(-50%) translateX(1px);
}
.declaration-dots {
 position: absolute;
 left: 50%;
 bottom: 12px;
 transform: translateX(-50%);
 display: flex;
 gap: 8px;
 z-index: 2;
}
.declaration-dot {
 width: 8px;
 height: 8px;
 border-radius: 999px;
 border: none;
 background: rgba(255, 255, 255, 0.45);
 cursor: pointer;
}
.declaration-dot.active {
 background: #5FCDC3;
}
.declaration-caption {
 position: absolute;
 left: 50%;
 bottom: 36px;
 transform: translateX(-50%);
 z-index: 3;
 max-width: calc(100% - 80px);
 padding: 6px 14px;
 border-radius: 999px;
 font-size: 12px;
 color: #eaf4ff;
 background: rgba(8, 12, 20, 0.62);
 border: 1px solid rgba(95, 205, 195, 0.28);
 backdrop-filter: blur(6px);
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
 text-align: center;
 line-height: 1.2;
}
.declaration-empty {
 min-height: 280px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #9fb1d0;
 font-size: 15px;
}
/* 插件布局 —— 完全重新设计: 左右等高等宽，弹性高度一致 */
    .plugins-wrapper {
 background: transparent;
}
.plugins-note {
 margin-top: -34px;
 margin-bottom: 22px;
 color: #93a9cf;
 font-size: 0.92rem;
}
.plugins-dual {
 display: flex;
 gap: 32px;
 align-items: stretch;
}
.plugin-col {
 flex: 1;
 background: rgba(16, 22, 32, 0.75);
 backdrop-filter: blur(8px);
 border: 1px solid rgba(95, 205, 195, 0.25);
 border-radius: 2rem;
 padding: 32px 28px;
 transition: all 0.3s;
 display: flex;
 flex-direction: column;
}
.plugin-col:hover {
 border-color: rgba(95, 205, 195, 0.65);
 transform: translateY(-5px);
 background: rgba(24, 30, 44, 0.85);
 box-shadow: 0 25px 40px -20px rgba(0, 0, 0, 0.6);
}
.plugin-header {
 display: flex;
 align-items: baseline;
 justify-content: space-between;
 margin-bottom: 28px;
 border-bottom: 1px solid rgba(95, 205, 195, 0.3);
 padding-bottom: 16px;
 flex-wrap: wrap;
}
.plugin-header h3 {
 font-size: 1.9rem;
 font-weight: 700;
 background: linear-gradient(135deg, #EAF4FF, #7FCDC6);
 background-clip: text;
 -webkit-background-clip: text;
 color: transparent;
}
.badge-count {
 background: rgba(95, 205, 195, 0.2);
 border-radius: 60px;
 padding: 4px 14px;
 font-size: 0.7rem;
 font-weight: 600;
 color: #7EE2DA;
}
.plugin-list {
 list-style: none;
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 14px 24px;
 flex: 1;
}
.plugin-list li {
 position: relative;
 padding-left: 22px;
 font-size: 0.9rem;
 color: #CFDDF5;
 transition: 0.1s;
 line-height: 1.45;
}
 .plugin-list li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 4px;
 width: 12px;
 height: 12px;
 background: #5FCDC3;
 -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2L3 14h7l-1 8 10-12h-7l1-8z" /></svg>') center / contain no-repeat;
 mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2L3 14h7l-1 8 10-12h-7l1-8z" /></svg>') center / contain no-repeat;
 opacity: 0.9;
}
.faq-grid {
 margin: 0 auto;
 display: flex;
 flex-direction: column;
 gap: 20px;
}
.faq-item {
 background: rgba(18, 24, 34, 0.7);
 backdrop-filter: blur(12px);
 border: 1px solid rgba(95, 205, 195, 0.2);
 border-radius: 20px;
 transition: 0.2s;
 overflow: hidden;
}
.faq-question {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 20px 28px;
 cursor: pointer;
 font-weight: 500;
 font-size: 18px;
 color: #E4EDFF;
}
.faq-toggle {
	/* height: 32px; */
    background: rgba(95, 205, 195, 0.15);
 border-radius: 40px;
 display: flex;
	/* align-items: center; */
    /* justify-content: center; */
    /* font-size: 1.3rem; */
    transition: 0.2s;
 color: #5FCDC3;
 text-align: center;
 line-height: 14px;
 padding: 10px;
}
.faq-item.open .faq-toggle {
 transform: rotate(45deg);
 background: #5FCDC3;
 color: #0B0E17;
}
.faq-answer {
 display: grid;
 grid-template-rows: 0fr;
 transition: grid-template-rows 0.3s ease;
}
.faq-answer-inner {
 overflow: hidden;
 padding: 0 28px;
 color: #B5C6E2;
}
.faq-answer.show {
 grid-template-rows: 1fr;
}
.faq-answer.show .faq-answer-inner {
 padding: 0 28px 24px 28px;
}
/* 联系区块 科幻质感 */
    .contact-glow {
 margin: 50px auto 70px;
 background: radial-gradient(ellipse 80% 50% at 50% 30%, rgba(30, 50, 60, 0.9), rgba(8, 12, 20, 0.96));
 border-radius: 2.5rem;
 padding: 64px 40px;
 text-align: center;
 border: 1px solid rgba(95, 205, 195, 0.35);
 backdrop-filter: blur(12px);
}
.contact-glow h2 {
 font-size: 2rem;
 margin-bottom: 16px;
}
.contact-glow p {
 color: #B8D0F0;
 margin-bottom: 32px;
}
.btn-contact {
 position: relative;
 overflow: hidden;
 isolation: isolate;
 background: #5FCDC3;
 color: #0A101C;
 padding: 14px 44px;
 animation: contactBtnFloat 2.4s ease-in-out infinite;
 box-shadow: 0 8px 20px rgba(95, 205, 195, 0.28);
}
 .btn-contact::before {
 content: "";
 position: absolute;
 top: -45%;
 left: -120%;
 width: 62%;
 height: 190%;
 background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.36) 48%, rgba(255, 255, 255, 0) 100%);
 transform: skewX(-20deg);
 animation: contactBtnShine 1.35s linear infinite;
 z-index: 0;
}
.btn-contact .icon {
 animation: contactIconSwing 1.7s ease-in-out infinite;
 transform-origin: center;
}
.btn-contact>* {
 position: relative;
 z-index: 1;
}
.btn-contact:hover {
 background: #82E7DF;
 transform: translateY(-3px);
 animation-play-state: paused;
 box-shadow: 0 12px 28px rgba(95, 205, 195, 0.36);
}
 .btn-contact:hover::before, .btn-contact:hover .icon {
 animation-play-state: paused;
}
 @keyframes contactBtnFloat {
 0% {
 transform: translateY(0);
}
 50% {
 transform: translateY(-2px);
}
 100% {
 transform: translateY(0);
}
}
 @keyframes contactBtnShine {
 0% {
 left: -120%;
}
 100% {
 left: 150%;
}
}
 @keyframes contactIconSwing {
 0% {
 transform: rotate(0deg);
}
 35% {
 transform: rotate(-8deg);
}
 70% {
 transform: rotate(7deg);
}
 100% {
 transform: rotate(0deg);
}
}
footer {
 border-top: 1px solid rgba(95, 205, 195, 0.2);
 padding: 32px 0;
 text-align: center;
 color: #7989A8;
 font-size: 0.85rem;
}
/* 弹窗 */
    .pay-modal {
 display: flex;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.75);
 backdrop-filter: blur(16px);
 align-items: center;
 justify-content: center;
 z-index: 1100;
 opacity: 0;
 visibility: hidden;
 transition: 0.25s ease;
}
.video-container {
 width: 960px;
 max-width: 92vw;
 aspect-ratio: 16 / 9;
 background: #070a12;
 border-radius: 1.2rem;
 border: 2px solid rgba(95, 205, 195, 0.4);
 position: relative;
 overflow: hidden;
}
.video-container iframe {
 width: 100%;
 height: 100%;
 border: none;
}
.video-container .declaration-carousel {
 height: 100%;
}
.video-container .declaration-slides {
 height: 100%;
 min-height: 0;
 aspect-ratio: auto;
}
.video-container .declaration-slide .slide-fg {
 height: calc(100% - 48px);
}
.video-container .declaration-empty {
 min-height: 100%;
 height: 100%;
}
.video-container .close-pay {
 font-size: 22px;
 line-height: 1;
 padding: 0;
 align-items: center;
 justify-content: center;
}
.pay-modal.active {
 opacity: 1;
 visibility: visible;
}
.pay-container {
 width: 450px;
 background: #10141E;
 border-radius: 2rem;
 position: relative;
 border: 1px solid #5FCDC3;
 transform: scale(0.96);
 transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
 overflow: hidden;
}
.pay-modal.active .pay-container {
 transform: scale(1);
}
.pay-embed {
 height: 580px;
 width: 100%;
}
.pay-embed iframe {
 width: 100%;
 height: 100%;
 border: none;
 background: #fff;
}
.close-pay {
 position: absolute;
 top: 12px;
 right: 12px;
 background: transparent;
 border: none;
 color: #dbe7f8;
 width: 28px;
 height: 28px;
 border-radius: 0;
 font-size: 14px;
 line-height: 1;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
 z-index: 11;
}
.close-pay:hover {
 color: #5FCDC3;
 background: rgba(95, 205, 195, 0.14);
 border-radius: 50%;
 transform: rotate(90deg);
}
.responsive-trick {
 width: 100%;
}
 @media (max-width: 768px) {
 .container {
 padding: 0 18px;
}
 .nav-inner {
 gap: 12px;
}
 .logo {
 display: none;
}
 .nav-links {
 width: 100%;
 display: flex;
 justify-content: space-between;
 gap: 8px;
}
 .nav-links a {
 flex: 1;
 text-align: center;
 padding: 7px 10px;
 font-size: 0.86rem;
}
 .hero {
 padding: 38px 0 46px;
}
 .hero h1 {
 font-size: 2.25rem;
 line-height: 1.28;
 margin-bottom: 16px;
}
 .hero-badge {
 margin-bottom: 18px;
}
 .hero-desc {
 width: 100%;
 max-width: 100%;
 font-size: 1rem;
 border-radius: 1rem;
 padding: 12px 14px;
 margin: 0 auto 24px;
}
 .hero-buttons {
 gap: 12px;
}
 .hero-buttons .btn {
 width: 100%;
 max-width: 420px;
 padding: 11px 20px;
}
 .declaration-card {
 width: 100%;
 max-width: 100%;
 padding: 14px;
}
 #declaration {
 padding-bottom: 20px;
}
 #plugins {
 padding-top: 0;
}
 .mobile-hide-inline {
 display: none;
}
 #pluginsTitle .mobile-hide-inline {
 display: none !important;
}
 .declaration-video {
 border-radius: 0.95rem;
}
 .section-title {
 font-size: 1.42rem;
 margin-bottom: 14px;
 background: none !important;
 -webkit-background-clip: border-box !important;
 background-clip: border-box !important;
 -webkit-text-fill-color: #EAF4FF !important;
 color: #EAF4FF !important;
 padding-left: 15px;
}
 .section-title::after {
 display: none;
}
 .plugins-note {
 margin-top: -8px;
 margin-bottom: 14px;
 font-size: 0.84rem;
}
 .plugin-col {
 padding: 18px 14px;
 border-radius: 1.2rem;
}
 .plugin-header {
 margin-bottom: 14px;
 padding-bottom: 10px;
}
 .plugin-header h3 {
 font-size: 1.25rem;
}
 .plugin-list li {
 font-size: 0.86rem;
}
 .faq-question {
 padding: 14px 16px;
 font-size: 1rem;
}
 .faq-answer.show .faq-answer-inner {
 padding: 0 16px 16px 16px;
}
 .contact-glow {
 margin: 30px auto 38px;
 padding: 30px 16px;
 border-radius: 1.3rem;
}
 .contact-glow h2 {
 font-size: 1.4rem;
}
 .btn-contact {
 width: 100%;
 max-width: 420px;
}
 .pay-container {
 width: calc(100vw - 24px);
 max-width: 520px;
}
 .pay-embed {
 height: 70vh;
 min-height: 420px;
}
 .video-container {
 max-width: calc(100vw - 24px);
}
}
